home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1996 June / Designer's Club 1996 June.iso / mac / Idea Source / Runner.DIR / 00176.ls < prev    next >
Encoding:
Text File  |  1996-04-29  |  708 b   |  31 lines

  1. on exitFrame
  2.   go(the frame)
  3.   if rollOver(2) then
  4.     set the movieRate of sprite 2 to 1
  5.   else
  6.     set the movieRate of sprite 2 to 0
  7.   end if
  8.   if rollOver(4) then
  9.     set the movieRate of sprite 4 to 1
  10.   else
  11.     set the movieRate of sprite 4 to 0
  12.   end if
  13.   if rollOver(5) then
  14.     set the movieRate of sprite 5 to 1
  15.   else
  16.     set the movieRate of sprite 5 to 0
  17.   end if
  18.   if (the mouseV > 120) and (the mouseH > 120) and (the mouseV < 440) and (the mouseH < 580) then
  19.     cursor(200)
  20.     set the locV of sprite 7 to the mouseV
  21.     set the locH of sprite 7 to the mouseH
  22.     updateStage()
  23.     if the mouseDown then
  24.       cursor(-1)
  25.       go(the frame + 1)
  26.     end if
  27.   else
  28.     cursor(-1)
  29.   end if
  30. end
  31.